home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1996 November
/
Chip 11-96.iso
/
treiber
/
drucker
/
brother
/
hl1260
/
hl1260d1.exe
/
START.BAT
< prev
next >
Wrap
DOS Batch File
|
1996-01-09
|
2KB
|
45 lines
:start
@echo off
cls
echo.
echo.
echo.
echo ┌────────────────────────────────────────────────────────────┐
echo │ BROTHER HL-600 Serie NV-RAM-Update │█
echo ├────────────────────────────────────────────────────────────┤█
echo │ │█
echo │ │█
echo │ 1 ..... Konfigurationsliste drucken. │█
echo │ 2 ..... Update HL-630/631 │█
echo │ 3 ..... Update HL-660 │█
echo │ │█
echo │ ESC .... Ende des Programms │█
echo ├────────────────────────────────────────────────────────────┤█
echo │ (c) 1996 by Brother International GmbH │█
echo └────────────────────────────────────────────────────────────┘█
echo ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
taste
if errorlevel = 51 goto HL660
if errorlevel = 50 goto HL630
if errorlevel = 49 goto Konfig
if errorlevel = 48 goto ende
if errorlevel = 27 goto ende
goto start
:Konfig
echo Konfigurationsliste wird gedruckt ........
copy /b Konfigl.prn lpt1: >NUL
goto start
:HL630
echo NVRAM Setup HL-630/631 wird durchgeführt ...
NV630new.exe
goto start
:HL660
echo NV-RAM Setup HL-660 wird durchgeführt ...
NV660new.exe
goto start
cls
taste
:ende
cls